home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / bind.def < prev    next >
Text File  |  1991-11-09  |  4KB  |  179 lines

  1. This file is bind.def, from which is created bind.c.
  2. It implements the builtin "bind" in Bash.
  3.  
  4. Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8. Bash is free software; you can redistribute it and/or modify it under
  9. the terms of the GNU General Public License as published by the Free
  10. Software Foundation; either version 1, or (at your option) any later
  11. version.
  12.  
  13. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License along
  19. with Bash; see the file COPYING.  If not, write to the Free Software
  20. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. $PRODUCES bind.c
  23.  
  24. $BUILTIN bind
  25. $DEPENDS_ON READLINE
  26. $FUNCTION bind_builtin
  27. $SHORT_DOC bind [-lvd] [-f filename] [-q name] [keyseq:readline-function]
  28. Bind a key sequence to a Readline function, or to a macro.  The
  29. syntax is equivalent to that found in ~/.inputrc, but must be
  30. passed as a single argument: bind '"\C-x\C-r": re-read-init-file'.
  31. Arguments we accept:
  32.   -l                 List names of functions.
  33.   -v                 List function names and bindings.
  34.   -d                 Dump functions and bindings such that they
  35.                      can be read back in.
  36.   -f  filename       Read key bindings from FILENAME.
  37.   -q  function-name  Query about which keys invoke the named function.
  38. $END
  39.  
  40. #include <stdio.h>
  41. #include "../shell.h"
  42. #include <readline/readline.h>
  43. #include <readline/history.h>
  44.  
  45. int
  46. bind_builtin (list)
  47.      WORD_LIST *list;
  48. {
  49.   extern int bash_readline_initialized;
  50.   int processing_args = 1;
  51.   int return_code = EXECUTION_SUCCESS;
  52.  
  53.   begin_unwind_frame ("bind");
  54.   unwind_protect_pointer (rl_outstream);
  55.   rl_outstream = stdout;
  56.  
  57.   if (!bash_readline_initialized)
  58.     initialize_readline ();
  59.     
  60.   while (processing_args && list && list->word->word[0] == '-')
  61.     {
  62.       register int i;
  63.       extern void rl_function_dumper ();
  64.       char *word = list->word->word;
  65.  
  66.       list = list->next;
  67.  
  68.       for (i = 1; word[i]; i++)
  69.     {
  70.       switch (word[i])
  71.         {
  72.         case 'l':
  73.           rl_list_funmap_names (0);
  74.           break;
  75.  
  76.         case 'v':
  77.           rl_function_dumper (0);
  78.           break;
  79.  
  80.         case 'd':
  81.           rl_function_dumper (1);
  82.           break;
  83.  
  84.         case 'f':
  85.           if (!list)
  86.         {
  87.           builtin_error ("-f requires a file name");
  88.           goto error_exit;
  89.         }
  90.           else
  91.         {
  92.           extern int errno;
  93.           char *initfile;
  94.  
  95.           initfile = list->word->word;
  96.  
  97.           if (rl_read_init_file (initfile) != 0)
  98.             {
  99.               builtin_error ("Cannot read %s: %s",
  100.                      initfile, strerror (errno));
  101.               goto error_exit;
  102.             }
  103.           else
  104.             list = list->next;
  105.         }
  106.           break;
  107.  
  108.         case 'q':
  109.           if (!list)
  110.         {
  111.           builtin_error ("-q requires the name of a function");
  112.           goto error_exit;
  113.         }
  114.           else while (list)
  115.         {
  116.           extern Function *rl_named_function ();
  117.           extern char **rl_invoking_keyseqs ();
  118.           Function *function;
  119.           char *name, **keyseqs;
  120.  
  121.           name = list->word->word;
  122.           list = list->next;
  123.  
  124.           function = rl_named_function (name);
  125.  
  126.           if (!function)
  127.             {
  128.               builtin_error ("Unknown function name `%s'", name);
  129.               goto error_exit;
  130.             }
  131.  
  132.           keyseqs = rl_invoking_keyseqs (function);
  133.  
  134.           if (!keyseqs)
  135.             {
  136.               printf ("%s is not bound to any keys.\n", name);
  137.             }
  138.           else
  139.             {
  140.               register int j;
  141.  
  142.               printf ("%s can be invoked via ", name);
  143.  
  144.               for (j = 0; j < 5 && keyseqs[j]; j++)
  145.             printf ("\"%s\"%s", keyseqs[j],
  146.                 keyseqs[j + 1] ? ", " : ".\n");
  147.  
  148.               if (keyseqs[j])
  149.             printf ("...\n");
  150.  
  151.               free_array (keyseqs);
  152.             }
  153.         }
  154.           break;
  155.  
  156.         case '-':
  157.           processing_args = 0;
  158.           break;
  159.  
  160.         default:
  161.           builtin_error ("Bad argument %c", word[i]);
  162.  
  163.         error_exit:
  164.           return_code = EXECUTION_FAILURE;
  165.           goto bind_exit;
  166.         }
  167.     }
  168.     }
  169.  
  170.   while (list)
  171.     {
  172.       rl_parse_and_bind (list->word->word);
  173.       list = list->next;
  174.     }
  175.  bind_exit:
  176.   run_unwind_frame ("bind");
  177.   return (return_code);
  178. }
  179.